home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / ddjcomp.lha / sixpack / notes.doc next >
Encoding:
Text File  |  1991-04-20  |  1.7 KB  |  63 lines

  1.  
  2. Philip G. Gage
  3. 5345 El Camino Drive
  4. Colorado Springs, CO 80918
  5.  
  6. Home: 719-593-1801
  7. Work: 719-570-8089
  8. CIS:  70541,3645
  9.  
  10.                                    NOTES
  11.  
  12.  
  13. This is my entry to the Data Compression contest.  The program compresses
  14.  
  15. well but runs slowly. 
  16.  
  17.  
  18. The program was developed on an Amiga 2000, then ported to a PC XT clone
  19.  
  20. with MS DOS 3.3.  It is written in portable standard C and compiles
  21.  
  22. under Power C version 1.1.6 and Turbo C++ version 1.01.  The supplied
  23.  
  24. .EXE file was generated by Turbo C++.
  25.  
  26.  
  27. To generate the executable file from the source file, simply compile and
  28.  
  29. link SIXPACK.C using a small memory model (I used the optimize switches
  30.  
  31. -G -O -Z for Turbo C++, but these are not essential). 
  32.  
  33.         Turbo C++:      tcc -G -O -Z sixpack.c
  34.  
  35.         Power C:        pc/e sixpack.c
  36.  
  37.  
  38. To compress a file, enter:
  39.  
  40.         SIXPACK inputfilename outputfilename
  41.  
  42.  
  43. To decompress a file, enter:
  44.  
  45.         SIXPACK inputfilename outputfilename d
  46.  
  47. (the "d" means "decompress", but any argument will do)
  48.  
  49.  
  50.  
  51.                         RESULTS (8 MHZ PC XT)
  52.  
  53.        FILE           ORIG      PACKED      PACK      UNPACK
  54.        NAME           SIZE       SIZE       TIME       TIME
  55.                      (BYTES)    (BYTES)    (SECS)     (SECS)
  56.        -----------------------------------------------------
  57.        CLOWN.SCI      64778      46068       189         83
  58.        KERMIT.EXE     99187      52032       285        101
  59.        ICE.EXE        31256      19546        79         37
  60.        ARTICLE.ASC    23145       7890        58         15
  61.        C_CODE.C       45444       8252        98         21
  62.        J.TXT          20444       5346        65         14
  63.